home *** CD-ROM | disk | FTP | other *** search
- /*
- ** ImageToScala.asrx
- **
- ** $VER: ImageToScala V1.0.0 (20.05.95)
- **
- ** (c) by MotionStudios
- ** Wildermuthplatz 3
- ** 28211 Bremen
- ** Tel.: 0421/249966
- **
- */
-
- ADDRESS "rexx_InfoChannel"
- OPTIONS RESULTS
-
- PARSE ARG Path
-
- /*
- ** Testen ob Scala schon gestartet, wenn nicht Scala starten.
- ** 5 Sekunden warten, bis Scala geladen wurde. Falls Zeit nicht reicht
- ** kann man beliebig Variieren.
- */
-
- IF ~SHOW('P','rexx_InfoChannel') THEN
- DO
- ADDRESS COMMAND 'run >NIL: <NIL: InfoChannel:InfoChannel'
- ADDRESS COMMAND Wait 5
- END
-
- 'PAUSE -1'
- PICTURE Path
- SHOW
- CONTINUE
-